Get One Entry Endpoint
Overview
Retrieve a single entry object identified by its :entry_id
from a specific source within an app.
This endpoint allows clients to fetch a JSON representation of a specific entry using its associated app_id
, source_id
, and entry_id
.
Endpoint
GET https://api.myboardtoday.com/app/:app_id/source/:source_id/entry/:entry_id
Path Parameters
Parameter | Type | Required | Description |
---|---|---|---|
app_id | UUID | Yes | Unique identifier of the app. |
source_id | UUID | Yes | Unique identifier of the source. |
entry_id | UUID | Yes | Unique identifier of the entry to be retrieved. |
Query Parameters
Parameter | Type | Required | Default | Description |
---|---|---|---|---|
fetch_ref | Boolean | No | false | If set to true , reference fields will be included in the response. |
Headers
Header | Required | Description |
---|---|---|
x-api-key | Yes | API key used for authentication. |
!Ensure that the x-api-key is valid and has permission to access the specified app and source.
Response
Returns a JSON object representing the requested entry.
Example Response
{
"entry_id": "123e4567-e89b-12d3-a456-426614174000",
"source_id": "456e7890-b12c-34d5-c678-526713174001",
"data": {
"title": "Example Entry Title",
"description": "A brief description of the entry.",
"created_at": "2024-12-01T10:00:00Z",
"updated_at": "2025-01-15T14:23:45Z"
},
"references": {
"related_entry_ids": ["..."]
}
}
Report Bugs, Request New Features, and Win $50 Every Month
We value your precious feedback. Please contact us when you find a bug or would like to request a new feature. (In the main panel, click on the bob logo on the top left corner, then in the Dropdown menu click on “contact for bugs or new features”). Every month we will select an “opinion leader” and reward him/her with $50 in cash.